|
Menu location |
---|
Sketch → Sketcher constraints → Constrain tangent |
Workbenches |
Sketcher |
Default shortcut |
T |
Introduced in version |
- |
See also |
Constraint point on object |
Tangent Constraint makes two curves to touch each other (be tangent). Lines are treated infinite, and arcs are treated as full circles/ellipses. The constraint is also capable of connecting two curves, forcing them tangent at the joint, thus making the joint smooth.
See also: Drawing aids.
The two edges are made tangent. If one of the edges is a conic, a Point object that has a Point on object constraint with both (extended) edges is added.
Nu se recomandă reconstruirea punctului de tangență prin crearea unui punct și constrângerea lui de a se afla pe ambele curbe. It will work, but the convergence will be seriously slower, jumpier, and will require about twice as many iterations to converge than normal. Use other modes of this constraint if the point of tangency is needed.
The endpoints are made coincident, and the angle between the edges at that point is set to 180° (smooth joint) or 0° (sharp joint), depending on the placement of the edges before the constraint is applied.
În acest mod, un punct final al unei curbe este constrâns să stea pe cealaltă curbă, and the curves are forced tangent at the point. This mode is applied when a curve and an endpoint of another curve were selected.
În acest mod, două curbe sunt tangente și punctul de tangență este urmărit. Acest mod se aplică atunci când au fost selectate două curbe și un punct.
În comparație cu tangența directă, această constrângere este mai lentă, deoarece există mai multe grade de libertate implicate, dar dacă este necesar punctul de tangență, acesta este modul recomandat deoarece oferă o convergență mai bună comparativ cu tangența directă + punct pe două curbe.
The two lines are made collinear.
Tangent Constraint poate fi creată din macros și din consola python folosind următoarele:
# direct tangency
Sketch.addConstraint(Sketcher.Constraint('Tangent',icurve1,icurve2))
# point-to-point tangency
Sketch.addConstraint(Sketcher.Constraint('Tangent',icurve1,pointpos1,icurve2,pointpos2))
# point-to-curve tangency
Sketch.addConstraint(Sketcher.Constraint('Tangent',icurve1,pointpos1,icurve2))
# tangent-via-point (plain constraint, helpers are not added automatically)
Sketch.addConstraint(Sketcher.Constraint('TangentViaPoint',icurve1,icurve2,geoidpoint,pointpos))
unde:
The Sketcher scripting page explains the values which can be used for incurve1
, incurve2
, pointpos1
, pointpos2
, geoidpoint
and pointpos
and contains further examples on how to create constraints from Python scripts.